Keysight Pathwave 89600 VSA .NET API
Print(IList<View>) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Printer Class > Print Method : Print(IList<View>) Method


results
A list of View objects to print. The list of all printable views can be retrieved using the Display.Views property. Note that you can print either individual results (traces, marker window, output window, etc.) or full windows (the main window or any trace windows), but not a mixture of the two. Any attempt to mix individual results and windows in a single call will lead to an System.ArgumentException being generated.

Glossary Item Box

Prints a selected set of content.

Syntax

Visual Basic (Declaration) 
Public Overloads MustOverride Sub Print( _
   ByVal results As IList(Of View) _
) 
C# 
public abstract void Print( 
   IList<View> results
)
C++/CLI 
public:
abstract void Print( 
   IList<View^>^ results
) 

Parameters

results
A list of View objects to print. The list of all printable views can be retrieved using the Display.Views property. Note that you can print either individual results (traces, marker window, output window, etc.) or full windows (the main window or any trace windows), but not a mixture of the two. Any attempt to mix individual results and windows in a single call will lead to an System.ArgumentException being generated.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also